home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Games Collection 1 / software vault.zip / software vault / CDR03 / SANG0.ZIP / GO.BAT < prev    next >
DOS Batch File  |  1993-09-23  |  744b  |  41 lines

  1. @ECHO OFF
  2. goto check
  3. :check
  4. IF EXIST ASK.COM GOTO RUN
  5. CLS
  6. ECHO.
  7. ECHO.
  8. ECHO FILE MISSING "ASK.COM" CONTACT SHAREWARE DISTRIBUTOR
  9. goto exit
  10. :run
  11. IF EXIST INSTALL.EXE GOTO INSTALL
  12. IF EXIST INSTALL.COM GOTO INSTALL
  13. IF EXIST INSTALL.BAT GOTO INSTALL
  14. GOTO WRONGDISK
  15. :INSTALL
  16. CLS
  17. echo.
  18. ask Requires installation to hard drive. Do you wish to install? (Y/N) 
  19. if errorlevel 1 goto end
  20. install
  21. echo.
  22. echo.
  23. echo.
  24. echo.
  25. goto exit
  26. :wrongdisk
  27. echo.
  28. echo.
  29. echo I'm sorry but to use this program you must use "DISK #1"
  30. echo. 
  31. echo.
  32. goto exit
  33. :end
  34. echo.
  35. echo.
  36. echo.
  37. echo.
  38. echo This program will only run on a hard drive due to the size of program.
  39. echo This program must be install with this batch file.  Thank You
  40. :exit
  41.